5/10/2021

Data Preprocessing and Prep

This is just data and library loading and some minor preprocessing

library(plotly)
library(plyr)
data<-mtcars
data$am<-as.factor(data$am)
levels(data$am)<-list(Automatic="0",Manual="1")

Boxplot - MPG versus Transmission Type

MPG vs disp, cyl (size), and transmission (color)

Thank You

This is the end of the presentation for the project.